home *** CD-ROM | disk | FTP | other *** search
/ Disc to the Future 2 / Disc to the Future Part II Programmer's Reference (Wayzata Technology)(6013)(1992).bin / MAC / THINKC / TCL1 / __MANDEL / MANDELBR / CMANDELD.H < prev    next >
Text File  |  1992-03-25  |  400b  |  25 lines

  1. //    CMandelDataFile.h
  2.  
  3. #pragma once
  4.  
  5. #include <CDataFile.h>
  6.  
  7. class CMandelDoc;
  8.  
  9. class CMandelDataFile: public CDataFile {
  10.  
  11.     public:
  12.     
  13.         void            IMandelDataFile(CMandelDoc *);
  14.         Handle            ReadAll(void);
  15.         void            WriteAll(Handle);
  16.  
  17.     protected:
  18.     
  19.         CMandelDoc *    itsMandelDoc;
  20.     
  21.     private:
  22.     
  23.         static unsigned    cGetRunSize(unsigned *p, unsigned *q);
  24.         static unsigned    cGetNurSize(unsigned *p, unsigned *q);
  25. };